* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body, html {
    margin: 0;
    padding: 0;
    color: #000000;
    background-color: rgb(255, 255, 255);
    overflow-x: hidden;
    list-style: none;
    z-index: 1;
}

html::-webkit-scrollbar {
    display: none; /* For Chrome, Edge, and Safari */
}

/*navbar-new*/

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    height: 3px;
    width: 25px;
    background: #ffffff;
    margin: 4px 0;
    transition: 0.4s;
    color: #000000;
}

nav{
    font-family: 'Atkinson Hyperlegible', sans-serif;
    font-weight: 200;
    font-size: 1.3rem;
    position: fixed;
    top: 0;
    transition: top 0.3s;
  z-index: 99;
  width: 100%;
  background: #131313;
  border-bottom: #E18A07 3px solid;

}
nav .wrapper{
  position: relative;
  max-width: 100%;
  padding: 0 30px;
  height: 11vh;
  line-height: 50%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wrapper .logo img{
    width: fit-content;
    height: 15vh;
}

.wrapper .nav-links{
  display: flex;
}
.nav-links li{
  list-style: none;
}

.launch-button-top{
    padding: 0 3vh;
}

nav input{
    display: none;
}

.launch-button{
    z-index: 1500;
    color: rgb(105, 105, 105);
    border: #E18A07 solid 3px;
    transition: all 0.3s ease;
}

.launch-button:hover{
    z-index: 1500;
    color: #ffffff;
    border: #E18A07 solid 3px;
}

.nav-links li a{
  color: #ffffff;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 200;
  padding: 9px 20px;
  transition: all 0.3s ease;
}
.nav-links li a:hover{
  background: #3A3B3C;
}
.nav-links .mobile-item{
  display: none;
}

.fa fa-bars{
    color: #ffffff;
    height: 30px;
    width: 30px;
}

.nav-links .drop-menu{
  position: absolute;
  background: #242526;
  width: 180px;
  line-height: 45px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 6px 10px rgba(0,0,0,0.15);
  transition: opacity 0.3s ease, visibility 0.3s ease, top 0.3s ease;
}

.nav-links li:hover .drop-menu{
  top: 70px;
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.nav-links .drop-menu{
  transition-delay: 0.7s;
}

.drop-menu li a{
  width: 100%;
  display: block;
  padding: 0 0 0 15px;
  font-weight: 400;
  border-radius: 0px;
}

.wrapper .btn{
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: none;
}
.wrapper .btn.close-btn{
  position: absolute;
  right: 30px;
  top: 10px;
}

@media screen and (max-width: 950px) {
   nav .wrapper{
        z-index: 100;
        padding: 0;
        height: 11vh;
    }

  .wrapper .logo img{
      height: 11vh;
      width: auto;
  }

  .wrapper .btn{
    display: block;
    height: 50px;
    width: 50px;
    align-content: center;
  }

  .fas fa-bars{
    width: 30px;
    height: 30px;
  }

  .fas fa-times{
    width: 30px;
    height: 30px;
  }

  .wrapper .nav-links{
    position: fixed;
    height: 100vh;
    width: 100%;
    max-width: 350px;
    top: 0;
    left: -100%;
    background: #242526;
    display: block;
    padding: 50px 10px;
    line-height: 50px;
    overflow-y: auto;
    box-shadow: 0px 15px 15px rgba(0,0,0,0.18);
    transition: all 0.3s ease;
  }
  /* custom scroll bar */
  ::-webkit-scrollbar {
    width: 10px;
  }
  ::-webkit-scrollbar-track {
    background: #242526;
  }
  ::-webkit-scrollbar-thumb {
    background: #3A3B3C;
  }
  #menu-btn:checked ~ .nav-links{
    left: 0%;
  }
  #menu-btn:checked ~ .btn.menu-btn{
    display: none;
  }
  #close-btn:checked ~ .btn.menu-btn{
    display: block;
  }
  .nav-links li{
    margin: 15px 10px;
  }
  .nav-links li a{
    padding: 0 20px;
    display: block;
    font-size: 20px;
  }
  .nav-links .drop-menu{
    position: static;
    opacity: 1;
    top: 65px;
    visibility: visible;
    padding-left: 20px;
    width: 100%;
    max-height: 0px;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
  }

  #showDrop:checked ~ .drop-menu,
  #showDropProd:checked ~ .drop-menu,
  #showMega:checked ~ .mega-box{
    max-height: 100%;
  }
 
  .nav-links .desktop-item{
    display: none;
  }
  .nav-links .mobile-item{
    display: block;
    color: #f2f2f2;
    font-size: 20px;
    font-weight: 500;
    padding-left: 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  .nav-links .mobile-item:hover{
    background: #3A3B3C;
  }
  .drop-menu li{
    margin: 0;
  }
  .drop-menu li a{
    border-radius: 5px;
    font-size: 18px;
  }

}

/*hero*/

.hero {
    height: 100vh;
    background: linear-gradient( rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5) ), url('../img/hero-website.webp') no-repeat center center/cover;
    background-size: cover;
    background-blend-mode: darken;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    padding-top: 14vh;
}

.hero-content {
    width: 100%;
    padding: 10vb;
    align-items: center;
}

   
   .hero h2 {
       font-family: 'From the Stars W01 Regular', sans-serif;
       font-size: 5.5rem;
       text-align: center;
       font-weight: lighter;
       line-height: 1.5;
       padding: 5%;
       margin-bottom: 40px;
       color: #ffffff;
   }

.hero p {
    font-family: 'Atkinson Hyperlegible', sans-serif;
    font-size: 18px;
    margin-bottom: 35px;
    color: #ffffff;
}

@media (max-width: 768px) {

    .hero{
        height: 75vh;
        padding-top: 15%;
    }

    .hero-content{
        max-width: 95%;
        padding: 0;
    }

    .hero h2 {
        font-size: 2.3rem;
    }

    .hero p {
        max-width: 95%;
        font-size: 18px;
    }
}

/*hero2*/

.hero2 {
    height: 100vh;
    background: url('../img/hero2.webp') no-repeat center center/cover;
    background-size: cover;
    background-blend-mode: darken;
    display: flex;
    align-content: center;
    text-align: left;
    padding: 14%;
}

.hero2-content {
    width: 125vb;
    height: 100%;
    padding:0% 5%;
    padding-top: 20%;
    align-content: end;
}

.hero2 h1 {
    font-family: 'Atkinson Hyperlegible', sans-serif;
    font-size: 1.7rem;
    font-weight: 200;
    color: #4b4b4b;
}

   
   .hero2 h2 {
       font-family: 'From the Stars W01 Regular', sans-serif;
       font-size: 3rem;
       font-weight: 200;
       line-height: 1.5;
       background-color: #E18A07;
  
   
       background-image: linear-gradient(60deg, #E18A07,  rgb(105, 105, 105), #E18A07, rgb(105, 105, 105), #E18A07);
       
       background-size: 100%;
       background-repeat: repeat;
     
       -webkit-background-clip: text;
       -webkit-text-fill-color: transparent; 
       -moz-background-clip: text;
       -moz-text-fill-color: transparent;
   }

   .gln-btn-top{
    padding: 4% 1%;
   }

   .gln-btn{
    color: rgb(105, 105, 105);
    text-decoration: none;
    font-family: 'Atkinson Hyperlegible', sans-serif;
    font-size: 1.1rem;
    background-color: transparent;
    border: rgb(105, 105, 105) 2px solid;
    padding: 1% 3%;
   }

   @media (max-width: 768px) {
    .hero2{
        height: 55vh;
        padding-top: 0;
    }

    .hero2-content{
        max-width: 95%;
        padding: 0 0;
        padding-top: 0;
    }

    .hero2 h1 {
        font-size: 1.1rem;
    }

    .hero2 h2 {
        font-size: 2.1rem;
        padding-bottom: 0;
    }

    .gln-btn{
        font-size: 0.8rem;
    }
}

@media (max-width: 1023px) and (min-width: 769px) {
  .hero2-content{
    padding-top: 0;
  }

  .hero3-content{
    padding-top: 0;
  }

  .hero4-content{
    padding-top: 0;
  }
}

/*hero3*/

.hero3 {
    height: 100vh;
    background: url('../img/hero3.webp') no-repeat center center/cover;
    background-size: cover;
    background-blend-mode: darken;
    display: flex;
    justify-content: flex-end;
    text-align: right;
    padding: 14%;
}

.hero3-content {
    width: 125vb;
    height: 100%;
    padding:0% 5%;
    padding-top: 20%;
    align-content: end;
}

.hero3 h1 {
    font-family: 'Atkinson Hyperlegible', sans-serif;
    font-size: 1.7rem;
    font-weight: 200;
    color: #000000;
}

   
   .hero3 h2 {
       font-family: 'From the Stars W01 Regular', sans-serif;
       font-size: 3rem;
       font-weight: 200;
       line-height: 1.5;
       background-color: #E18A07;
  
   
       background-image: linear-gradient(60deg, #E18A07,  rgb(105, 105, 105), #E18A07, rgb(105, 105, 105), #E18A07);
       
       background-size: 100%;
       background-repeat: repeat;
     
       -webkit-background-clip: text;
       -webkit-text-fill-color: transparent; 
       -moz-background-clip: text;
       -moz-text-fill-color: transparent;
   }

   .gln-btn-top{
    padding: 4% 1%;
   }

   .gln-btn{
    color: rgb(3, 3, 3);
    text-decoration: none;
    font-family: 'Atkinson Hyperlegible', sans-serif;
    font-size: 1.1rem;
    background-color: transparent;
    border: rgb(105, 105, 105) 2px solid;
    padding: 1% 3%;
    transition: all 0.3s;
   }

   .gln-btn:hover{
    border: #E18A07 2px solid;
    color: #ffffff;
    font-size: 1.2rem;
   }

   @media (max-width: 768px) {
    .hero3{
        height: 55vh;
        padding-top: 0;
    }

    .hero3-content{
        max-width: 95%;
        padding-top: 0%;
    }

    .hero3 h1 {
        color: #000000;
        font-size: 1.1rem;
    }

    .hero3 h2 {

        font-size: 2.1rem;
        padding-bottom: 0;
    }

    .gln-btn{
        color: white;
        font-size: 0.8rem;
    }

}

/*hero2*/
.hero4 {
    height: 100vh;
    background: url('../img/footer.webp') no-repeat calc(100% - 35%) center  / cover;
    background-size: cover;
    background-blend-mode: darken;
    display: flex;
    align-content: center;
    text-align: left;
    padding: 14%;
}

.hero4-content {
    width: 125vb;
    height: 100%;
    padding:0% 5%;
    padding-top: 20%;
    align-content: end;
}

.hero4 h1 {
    font-family: 'Atkinson Hyperlegible', sans-serif;
    font-size: 1.7rem;
    font-weight: 200;
    color: #ffffff;
}

   
   .hero4 h2 {
       font-family: 'From the Stars W01 Regular', sans-serif;
       font-size: 3rem;
       font-weight: 200;
       line-height: 1.5;
       background-color: #E18A07;
  
   
       background-image: linear-gradient(60deg, #E18A07,  rgb(255, 255, 255), #E18A07, rgb(255, 255, 255), #E18A07);
       
       background-size: 100%;
       background-repeat: repeat;
     
       -webkit-background-clip: text;
       -webkit-text-fill-color: transparent; 
       -moz-background-clip: text;
       -moz-text-fill-color: transparent;
   }

   .gln-btn-top{
    padding: 4% 1%;
   }

   .hero4-btn{
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-family: 'Atkinson Hyperlegible', sans-serif;
    font-size: 1.1rem;
    background-color: transparent;
    border: rgb(255, 255, 255) 2px solid;
    padding: 1% 3%;
    transition: all 0.3s ease;
   }

   .hero4-btn:hover{
    font-size: 1.2rem;
    border: #E18A07 2px solid;
   }
   

   @media (max-width: 768px) {
    .hero4{
        height: 55vh;
        padding-top: 0;
    }

    .hero4-content{
        max-width: 95%;
        padding-top: 0%;
    }

    .hero4 h1 {
        font-size: 1.1rem;
    }

    .hero4 h2 {
        font-size: 2.1rem;
        padding-bottom: 0;
    }

    .hero4-btn{
        font-size: 0.8rem;
    }
}



/*services container card*/

.services-container {
    font-family: 'Roboto', sans-serif;
    background-color: white;
    color: black;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    width: 95%;
}

.service-card {
    background-color: transparent;
    padding: 20px;
    border-radius: 4px;
    text-align: justify;
    border: 2px solid rgb(105, 105, 105);
    position: relative; /*new*/
    overflow: hidden;
    transition: all 0.5s ease;
}

.service-card:hover {
    color: #000000;
    font-size: 1.35em;
    background-color: rgb(255, 255, 255);
    transition: all 0.5s ease;
    transform: scale(1.05);
}

.service-card h3 {
    color: #E18A07;
    margin-top: 0;
    font-weight: 200;
   margin-bottom: 20px;
   font-size: 24px;
   font-family: 'From the Stars W01 Regular', sans-serif;
}

.service-card p {
    margin-bottom: 0;
    font-size: 16px;
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/*fly with baas*/
.fly-with-baas {
    position: relative;
    width: 100%;
    padding: 3% 5%;
}

.fly-with-baas .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.fly-with-baas-about-content {
  /* position: relative; */
  /* display: inline-block; shrink to fit text */
}

.about-careers-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;    /* make sure it fills without distortion */
  transform: translate(-50%, -50%); /* center */
  z-index: 0;          /* push behind everything */
}

.fly-with-baas-orbital-content{
    background: url('../img/fly-with-baas-orbital.webp') center/cover no-repeat;
}

.fly-with-baas-suborbital-content{
    background: url('../img/fly-with-baas-desktop.webp') center/cover no-repeat;
}

.fly-with-baas-content h1{
    color: #E18A07;
}

.fly-with-baas-content {
    width: 100%;
    height: 100%;
    position: relative;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: flex-end;
    padding: 10%;

}

@media (max-height: 650px) {

    .fly-with-baas-content {
        justify-content: center;
    }    
}

.fly-with-baas-content h1 {
    font-family: 'From the Stars W01 Regular', sans-serif;
    font-size: 3.6rem;
    font-weight: 200;
    margin-bottom: 3%;
    position: relative;
    z-index: 2;
}

.fly-with-baas-content p {
    font-size: 1.3rem;
    color: #ffffff;
    font-family: 'Atkinson Hyperlegible', Arial, sans-serif;
    width: 50%;
    margin-bottom: 3%;
    position: relative;
    z-index: 3;
}

.fly-with-baas-content .button {
    display: inline-block;
    padding: 10px 20px;
    max-width: fit-content;
    font-family: 'Atkinson Hyperlegible', Arial, sans-serif;
    font-size: 1.3rem;
    color: #ffffff;
    text-decoration: none;
    background-color: transparent;
    cursor: pointer;
    border: #E18A07 2px solid;
    position: relative;
    transition: all 0.3s ease;
    position: relative;
    z-index: 4;
}

.fly-with-baas-content .button:hover {
    background-color: #E18A07;
}

@media (max-width: 768px) {

  .fly-with-baas-suborbital-content{
    background: url('../img/fly-with-baas.webp') center/cover no-repeat;
  }

  .fly-with-baas-content h1{
    font-size: 1.9rem;
    margin-bottom: 9%;
  }

    .fly-with-baas-content p{
        font-size: 0.9rem;
        width: 100%;
    }

    .fly-with-baas-content .button{
        font-size: 0.8rem;
    }
}

/* service type */

.service-type{
  padding: 5% 2%;
}

.container-service{
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  gap: 2%;
}

.container-sub-service{
  width: 30%;
  background-color: #ffffff;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2%;
  border: 2px solid rgb(105, 105, 105);
  border-radius: 2%;
}

.container-sub-service img{
  width: 85%;
  height: auto;
  z-index: 1;
  margin-bottom: 5%;
}

.container-sub-service h2{
  font-size: 1.7rem;
  font-weight: 200;
  margin-bottom: 5%;
  color: #E18A07;
}

.container-sub-service p{
  font-family: 'Atkinson Hyperlegible', sans-serif;
  font-size: 1.2rem;
  line-height: 1.6;
  color: #2e2e2e;
  text-align: center;
}

@media (max-width: 768px){
  .container-service{
  display: flex;
  flex-direction: column;
  align-content: flex-start;
  align-items: center;
  gap: 5%;
}

.container-sub-service{
  width: 100%;
  height: fit-content;
  padding: 2% 10%;
  margin-bottom: 4%;
}

.container-sub-service img{
  width: 70%;
}

.container-sub-service p{
  font-size: 1.2rem;
}
}

/* manual contact */

.manual-contact-main{
  width: 100%;
  margin: 0 auto;
  padding: 1%;
  justify-items: center;
  align-items: center;
  text-align: center;
  display: flex;
  flex-direction: row;
}

.company-contact{
  display: flex;
  flex-direction: column;
  width: 50%;
  padding: 1% 10%;
  justify-items: center;
  align-items: center;
  text-align: center;
}

.company-contact h3{
  font-family: 'Atkinson Hyperlegible', sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: #E18A07;
  margin-bottom: 4%;
}

.company-contact p{
  font-family: 'Atkinson Hyperlegible', sans-serif;
  font-size: 1.1rem;
  font-weight: 200;
  margin-bottom: 10%;
}

.manual-contact{
  width: fit-content;
  margin: 0 auto;
  padding: 1%;
  justify-items: center;
  align-items: center;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-content: center;
}

.vertical-half-rule {
  width: 0.16vw; 
  height: 20vh;
  border: 0;
  background-image: linear-gradient(to bottom, rgba(105, 105, 105, 1), #E18A07, rgba(105, 105, 105, 1));
  margin: 0;
}

.manual-contact p {
  font-size: 1.1rem;
  color: #000000;
  font-family: 'Atkinson Hyperlegible', Arial, sans-serif;
  width: 90%;
  margin-top: 4%;
  margin-bottom: 3%;
  position: relative;
  z-index: 3;
}

.manual-contact p u{
  color: #E18A07;
}

.manual-contact .button {
  display: inline-block;
  padding: 10px 20px;
  max-width: fit-content;
  font-family: 'Atkinson Hyperlegible', Arial, sans-serif;
  font-size: 1.1rem;
  color: #000000;
  text-decoration: none;
  background-color: transparent;
  cursor: pointer;
  border: #E18A07 2px solid;
  position: relative;
  transition: all 0.3s ease;
  margin-bottom: 10%;
}

.manual-contact .button:hover {
  background-color: #E18A07;
  color: #ffffff;
}

@media (max-width: 768px){
  .vertical-half-rule{
    width: 1px;
    height: 15vh;
  }

  .company-contact{
  width: 100%;
  padding: 1% 10%;
}

.company-contact h3{
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 4%;
}

.company-contact p{
  font-size: 1rem;
  font-weight: 200;
  margin-bottom: 10%;
}

  .manual-contact-main{
    flex-direction: column;
    align-items: center;
  }

  .manual-contact p{
    font-size: 0.7rem;
    margin-top: 2%;
    margin-bottom: 4%;
  }

  .manual-contact .button{
    margin-bottom: 10%;
  }
}

/* enquiry section */

.enquiry-section{
  width: 100%;
  height: 50%;
  background: linear-gradient(90deg,rgb(44, 160, 149) 0%, rgba(17, 31, 112, 1) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5%;
}

.enquiry-section-content{
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.enquiry-section-content h3{
  font-family: 'Atkinson Hyperlegible', sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 2%;
}

.enquiry-section-content p{
  font-family: 'Atkinson Hyperlegible', sans-serif;
  font-size: 1.1rem;
  font-weight: 200;
  color: #ffffff;
  margin-bottom: 2%;
  text-align: center;
}

.enquiry-button {
  width: fit-content;
  background-color: transparent;
  color: #ffffff;
  padding: 1% 2%;
  font-size: 1.1rem;
  font-weight: 400;
  cursor: pointer;
  border: #ffffff 2px solid;
  transition: all 0.3s ease;
  text-decoration: none;
  font-family: 'Atkinson Hyperlegible', sans-serif;
}

.enquiry-button:hover {
  color: rgba(23, 133, 176, 1);
  background-color: #ffffff;
}

@media (max-width: 768px){

  .enquiry-section-content h3{
    font-size: 1.1rem;
  }

  .enquiry-section-content p{
    font-size: 0.7rem;
    margin-top: 8%;
    margin-bottom: 4%;
  }

  .enquiry-button{
    margin-bottom: 5%;
    padding: 3% 6%;
  }
}

/*footer-new*/
footer {
    width: 100%;
    height: 100%; 
   background-color: transparent;
   font-family: 'Atkinson Hyperlegible', sans-serif;
   color: white;
   background-position: center center;
   background-attachment: relative;
   background-repeat: no-repeat; 
   background-size: cover;
   background-image: url(../img/footer-all.png);
 }

 .footer-main{
    height: 60vh;
 }

 .footer-content {
    height: 100%;
    background-color: transparent;
   display: flex;
   flex-direction: column;
   justify-content: space-around;
   align-items: center;
   margin: 0 auto;
 }

 .icons-horizontal{
    display: flex;
    flex-direction: row;
    width: 90%;
    justify-content: space-around;
    align-items: center;
    gap: 2%;
 }

 .content-wrapper{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-around;
    align-items: flex-start;
    width: 80%;
 }

 .wrapper-section{
    display: flex;
    width: 25%;
    flex-direction: column;
    justify-content: center;
    align-items:flex-start;
    text-align: left;
    padding: 2% 5%;
 }

 .wrapper-section h5{
    font-size: 1rem;
    font-family: 'From the Stars W01 Regular', sans-serif;
    font-weight: 200;
    margin-bottom: 9%;
    color: rgb(130, 130, 130);
 }

 .wrapper-section a{
    font-size: 0.8rem;
    font-family: 'Atkinson Hyperlegible', sans-serif;
    margin-block-end: 9%;
    color: white;
    text-decoration: none;
 }

 .wrapper-section a:hover{
  color: rgb(130, 130, 130);
 }

 .footer-logo {
   height: 16vh;
   width: auto;
   margin-bottom: 0%;
 }

 .footer-copyright{
    font-size: 0.8em;
    margin-top: 5%;
    margin-bottom: 5%;
 }

 .vertical-rule{
    width: 1px; 
    height: 70%;
    border: 0;
    background-image: linear-gradient(to bottom, rgba(105, 105, 105, 1), #E18A07, rgba(105, 105, 105, 1));
    margin: 0;
  }
  

 .social-profiles{
    justify-items: center;
    height: 20%;
    width: 30%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
 }
 
 .social-icon {
    height: 30px;
    width: auto;
    margin: 0 5%;
    padding-bottom: 0;
  }

.footer-content hr{
    border: 0;
       height: 1px;
       background-image: linear-gradient(to right, rgba(105, 105, 105, 1), #E18A07, rgba(105, 105, 105, 1));
       width: 60%;
       display: none;
}

   @media (max-width: 768px){

    .footer-content {
     flex-direction: column;
     justify-items: center;
     flex-wrap: nowrap;
    }

    .content-wrapper{
      width: 90%;
      flex-wrap: wrap-reverse;
 }

  .social-profiles{
    width: 60%;
    height: 25%;
 }

 .wrapper-section{
    width: 50%;
    padding: 2% 5%;
    margin-bottom: 15%;
 }

 .wrapper-section h5{
    font-size: 0.8rem;
    margin-bottom: 9%;
 }

 .wrapper-section a{
    font-size: 0.6rem;
    margin-block-end: 9%;
 }
    
    .footer-content hr{
     border: 0;
        height: 1px;
        background-image: linear-gradient(to right, rgba(105, 105, 105, 1), #E18A07, rgba(105, 105, 105, 1));
        width: 70%;
        display: block;
        z-index: 1;
    }
 
    .footer-left-text{
     display: flex;
     flex-direction: column;
     justify-content: center;
    }
 
    .footer-left-text p{
     margin: 0 0;
    }
 
    .footer-logo{
     height: auto;
     width: 100%;
    }
 
    .footer-copyright{
     font-size: 0.5em;
     padding: 0%;
    }
 
    .social-icon{
     margin: 0 4%;
     padding-bottom: 1%;
     padding-top: 0;
    }
 
    .footer-center-data{
     display: flex;
     flex-direction: row;
     justify-content: space-between;
     align-items: center;
     padding: 0%;
     width: 30vh;
  }
}

 @media (max-width: 400px) and (min-height: 525px){

    .footer-main{
        height: 100vh;
    }

    .social-profiles{
      width: 80%;
    }

  }

 @media (max-width: 400px) and (min-height: 401px) and (max-height: 525px){

  .footer-main{
      height: 100vh;
  }
      .social-profiles{
      width: 90%;
    }
}

 @media (max-width: 400px) and (max-height: 400px) {

  .footer-main{
      height: 130vh;
  }

      .social-profiles{
      width: 90%;
    }
}

 @media (max-width: 768px) and ( min-width: 401px) and (max-height: 705px) {

  .footer-main{
    height: 135vh;
}
}

 @media (max-width: 1024px) and ( min-width: 768px) and (max-height: 1024px){

  .footer-main{
    height: fit-content;
}

 }

  @media (max-width: 1024px) and ( min-width: 768px) and (max-height: 1404px) and (min-height: 1025px){

  .footer-main{
    height: 50vh;
  }

  .footer-logo{
    height: 10vh;
    width: auto;
  }

}


/*all purpose borders*/

.horizontal-rule{
    height: 0.3vh; 
    width: 100%;
    border: 0;
    background-image: linear-gradient(to right, rgba(105, 105, 105, 1), #E18A07, rgba(105, 105, 105, 1));
    margin: 0;
  }

 .footer-border{
    display: flex;
    flex-direction: row;
 }

 .footer-border-left {
    width: 100%;
    height: 0.5vh;
    background-color: #E18A07;
    margin: 0;
 }

 .footer-border-right {
    width: 100%;
    height: 0.5vh;
    background-color: rgb(105, 105, 105);
    margin: 0;
 }